home *** CD-ROM | disk | FTP | other *** search
- /****
- * BEditPane.h
- *
- * A text edit pane for a tiny editor.
- *
- ****/
-
-
- #define _H_BEditPane
-
- #include <CEditText.h>
-
- struct BEditPane : CEditText {
-
-
- /** Instance Methods **/
- /** Contruction/Destruction **/
- void IEditPane(CView *anEnclosure, CBureaucrat *aSupervisor);
-
- /** Command **/
- void DoCommand(long theCommand);
-
- /** Mouse and Keystrokes **/
- void DoKeyDown(char theChar, Byte keyCode, EventRecord *macEvent);
- void DoAutoKey(char theChar, Byte keyCode, EventRecord *macEvent);
- };
-